100
|
How can I remove an event
with Calendar1 do
begin
AutoSize := EXCALENDARLib_TLB.exFixedSize;
FixedCellWidth := 36;
Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' +
'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' +
'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' +
'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
Events.Add(Calendar1.Date).Image := 1;
Events.Remove(OleVariant(Calendar1.Date));
end
|
99
|
How can I count the events
with Calendar1 do
begin
Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' +
'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' +
'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' +
'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
Events.Add(Calendar1.Date).Image := 1;
var_Count := Events.Count;
end
|
98
|
How can I clear all events
with Calendar1 do
begin
Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' +
'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' +
'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' +
'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
Events.Add(Calendar1.Date).Image := 1;
Events.Clear();
end
|
96
|
How can I assign an icon to a date

with Calendar1 do
begin
AutoSize := EXCALENDARLib_TLB.exFixedSize;
FixedCellWidth := 36;
Images('gBJJgBAIDAAGAAEAAQhYAf8Pf4hh0QihCJo2AEZjQAjEZFEaIEaEEaAIAkcbk0olUrlktl0vmExmUzmk1m03nE5nU7nk9n0/oFBoVDolFo1HpFJpVLplNp1PqFRqVTql' +
'Vq1XrFZrVbrldr1fsFhsVjslls1ntFptVrtltt1vuFxuVzul1u13vF5vV7vl9v1/wGBwWDwmFw2HxGJxWLxmNx0xiFdyOTh8Tf9ZymXx+QytcyNgz8r0OblWjyWds+m0' +
'ka1Vf1ta1+r1mos2xrG2xeZ0+a0W0qOx3GO4NV3WeyvD2XJ5XL5nN51aiw+lfSj0gkUkAEllHanHI5j/cHg8EZf7w8vl8j4f/qfEZeB09/vjLAB30+kZQAP/P5/H6/yN' +
'AOAEAwCjMBwFAEDwJBMDwLBYAP2/8Hv8/gAGAD8LQs9w/nhDY/oygIA=');
Events.Add(Calendar1.Date).Image := 1;
end
|
95
|
How can I enable or disable a date

with Calendar1 do
begin
Events.Add(Calendar1.Date).Disabled := True;
end
|
94
|
How can I mark or highlight a date

with Calendar1 do
begin
Events.Add(Calendar1.Date).Marker := True;
end
|
93
|
How can I assign a tooltip or a comment to a date

with Calendar1 do
begin
with Events.Add(Calendar1.Date) do
begin
Comment := 'This is a text that shows up when the cursor hovers the date';
CommentTitle := 'T I T L E';
end;
HideSelection := True;
end
|
92
|
How can I assign any extra data to a date
with Calendar1 do
begin
Events.Add(Calendar1.Date).UserData := 'your data';
end
|
91
|
How can I change the background color for a date

with Calendar1 do
begin
Events.Add(Calendar1.Date).BackColor := $ff;
end
|
90
|
How can I change the foreground color for a date

with Calendar1 do
begin
Events.Add(Calendar1.Date).ForeColor := $ff;
end
|
89
|
How can I draw a date as strikeout

with Calendar1 do
begin
Events.Add(Calendar1.Date).StrikeOut := True;
end
|
88
|
How can I underline a date

with Calendar1 do
begin
Events.Add(Calendar1.Date).Underline := True;
end
|
87
|
How can I make italic a date

with Calendar1 do
begin
Events.Add(Calendar1.Date).Italic := True;
end
|
86
|
How can I bold a date

with Calendar1 do
begin
Events.Add(Calendar1.Date).Bold := True;
end
|
85
|
How can I get the last visible date being displayed in the calendar
with Calendar1 do
begin
ShowNonMonthDays := False;
Events.Add(Calendar1.LastVisibleDate).Comment := 'This is the last visible date';
end
|
84
|
How can I get the first visible date being displayed in the calendar
with Calendar1 do
begin
ShowNonMonthDays := False;
Events.Add(Calendar1.FirstVisibleDate).Comment := 'This is the first visible date';
end
|
83
|
How can I hide the ticker that's shown for dates that have a tooltip or a comment
with Calendar1 do
begin
CommentBackColor := BackColor;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
end
|
82
|
How can I change the visual aspect of the dates that have a comment or a tooltip assigned

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
CommentBackColor := $1000000;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
81
|
How can I change the visual aspect of the dates that have a comment or a tooltip assigned
with Calendar1 do
begin
with VisualAppearance do
begin
Add(11,'c:\exontrol\images\normal.ebn');
Add(1,'CP:11 4 2 -2 -2');
end;
CommentBackColor := $1000000;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
80
|
How can I change the color to highlight the dates that have a comment or a tooltip assigned

with Calendar1 do
begin
CommentBackColor := RGB(0,0,0);
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
79
|
How can I hide the days that are shown in gray, and doesn' belong to the month

with Calendar1 do
begin
ShowNonMonthDays := False;
end
|
78
|
How can I change the color for non working days

with Calendar1 do
begin
NonworkingDays := 6;
NonworkingDaysPattern := EXCALENDARLib_TLB.exPatternCross;
NonworkingDaysColor := RGB(255,0,0);
end
|
77
|
How can I change the pattern or the style to draw the non working days

with Calendar1 do
begin
NonworkingDays := 6;
NonworkingDaysPattern := EXCALENDARLib_TLB.exPatternCross;
end
|
76
|
How can I show or hide the non working days
with Calendar1 do
begin
NonworkingDays := 0;
end
|
75
|
How can I specify the non working days
with Calendar1 do
begin
NonworkingDays := 6;
end
|
72
|
How can I specify the min and max years to scroll within
with Calendar1 do
begin
MinScrollYear := 2001;
MaxScrollYear := 2010;
end
|
71
|
How do I let the tooltip being displayed longer

with Calendar1 do
begin
ToolTipPopDelay := 10000;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
69
|
How can I change the date that gets the focus
with Calendar1 do
begin
Date := '1/1/2001';
FocusDate := '1/2/2001';
end
|
68
|
How can I select a new date
with Calendar1 do
begin
Date := '1/1/2001';
Value := '1/2/2001';
end
|
67
|
I've seen that the width of the tooltip is variable. Can I make it larger

with Calendar1 do
begin
ToolTipWidth := 328;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
66
|
How do I disable showing the tooltip for all control
with Calendar1 do
begin
ToolTipDelay := 0;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
65
|
How do I show the tooltip quicker
with Calendar1 do
begin
ToolTipDelay := 1;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
64
|
How do I call your x-script language
with Calendar1 do
begin
ExecuteTemplate('BackColor = RGB(255,0,0)');
end
|
63
|
How do I call your x-script language
with Calendar1 do
begin
Template := 'BackColor = RGB(255,0,0)';
end
|
62
|
Can I change the font for the tooltip

with Calendar1 do
begin
ToolTipDelay := 1;
with ToolTipFont do
begin
Name := 'Tahoma';
Size := 14;
end;
ToolTipWidth := 364;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
61
|
How can I change the caption of the Today's button

with Calendar1 do
begin
TodayCaption := 'Azi';
end
|
59
|
How do I unselect a date

with Calendar1 do
begin
SingleSel := False;
Date := '1/1/2001';
SelDate := '1/2/2001';
SelDate := '1/3/2001';
SelDate := '1/4/2001';
UnSelDate('1/3/2001');
end
|
58
|
How do I get the list of selected dates
// SelectionChanged event - Fired when the selection is changed.
procedure TForm1.Calendar1SelectionChanged(ASender: TObject; );
begin
with Calendar1 do
begin
OutputDebugString( SelDate );
end
end;
|
57
|
How do I select multiple dates

with Calendar1 do
begin
SingleSel := False;
Date := '1/1/2001';
SelDate := '1/2/2001';
SelDate := '1/3/2001';
SelDate := '1/4/2001';
end
|
56
|
How do I get the selected date
with Calendar1 do
begin
SelDate := Date;
end
|
55
|
How can I build a date expression
with Calendar1 do
begin
Date := DoDate[2001,1,1];
end
|
54
|
How can I select a new date

with Calendar1 do
begin
Date := DoDate[2001,1,1];
SelDate := DoDate[2001,1,2];
end
|
53
|
How can I select a new date
with Calendar1 do
begin
Date := '1/1/2001';
SelDate := '1/2/2001';
end
|
52
|
How can I change the browsed date
with Calendar1 do
begin
Date := '1/1/2001';
end
|
51
|
How can I show or hide the buttons that in the header

with Calendar1 do
begin
ShowYearSelector := False;
ShowMonthSelector := False;
end
|
50
|
How can I show or hide the buttons that scrolls the years

with Calendar1 do
begin
ShowYearSelector := False;
end
|
49
|
How can I disable changing the month in the months selector

with Calendar1 do
begin
ShowMonthSelector := False;
end
|
48
|
How can I change the visual aspect of the selected date, using your EBN

with Calendar1 do
begin
BackColor := RGB(255,255,255);
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
SelBackColor := $1000000;
SelForeColor := BackColor;
end
|
47
|
How can I change the colors for selected dates

with Calendar1 do
begin
SelBackColor := RGB(0,0,0);
SelForeColor := RGB(255,255,255);
end
|
46
|
How can I change the color of the line arround a month

with Calendar1 do
begin
DrawBorderLine := EXCALENDARLib_TLB.LargeDots;
BorderLineColor := RGB(255,0,0);
end
|
45
|
How can I change the style of the line arround a month

with Calendar1 do
begin
DrawBorderLine := EXCALENDARLib_TLB.LargeDots;
end
|
44
|
How can I specify the number of months being displayed
with Calendar1 do
begin
ShowTodayButton := False;
ShowYearScroll := False;
MinMonthX := 2;
MaxMonthX := 2;
MinMonthY := 2;
MaxMonthY := 2;
end
|
43
|
How can I lock the control, so user can't select a new date
with Calendar1 do
begin
Locked := True;
end
|
42
|
How do I change the first day of the week

with Calendar1 do
begin
FirstDay := EXCALENDARLib_TLB.Monday;
end
|
41
|
How do I change the name of the months

with Calendar1 do
begin
MonthNames := 'Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec';
end
|
40
|
How do I change the name of the months

with Calendar1 do
begin
MonthName[EXCALENDARLib_TLB.January] := 'Jan';
MonthName[EXCALENDARLib_TLB.February] := 'Feb';
MonthName[EXCALENDARLib_TLB.March] := 'Mar';
MonthName[EXCALENDARLib_TLB.April] := 'Apr';
MonthName[EXCALENDARLib_TLB.May] := 'May';
MonthName[EXCALENDARLib_TLB.June] := 'Jun';
MonthName[EXCALENDARLib_TLB.July] := 'Jul';
MonthName[EXCALENDARLib_TLB.August] := 'Aug';
MonthName[EXCALENDARLib_TLB.September] := 'Sep';
MonthName[EXCALENDARLib_TLB.October] := 'Oct';
MonthName[EXCALENDARLib_TLB.November] := 'Nov';
MonthName[EXCALENDARLib_TLB.December] := 'Dec';
end
|
39
|
How do I change the name for each week day

with Calendar1 do
begin
AutoSize := EXCALENDARLib_TLB.exFixedSize;
FixedCellWidth := 24;
FixedCellHeight := 16;
WeekDays := 'Su Mo Tu We Th Fr Sa';
HeaderForeColor := RGB(255,0,0);
HeaderBackColor := RGB(255,255,255);
end
|
38
|
How can I specify the width and height for dates being displayed in the calendar
with Calendar1 do
begin
AutoSize := EXCALENDARLib_TLB.exFixedSize;
FixedCellWidth := 22;
FixedCellHeight := 16;
end
|
37
|
How can I specify the width and height for dates being displayed in the calendar
with Calendar1 do
begin
AutoSize := EXCALENDARLib_TLB.exFixedSize;
FixedCellWidth := 32;
FixedCellHeight := 24;
end
|
36
|
How do I change the appearance for dates in the calendar

with Calendar1 do
begin
AppearanceDay := EXCALENDARLib_TLB.Day3D;
BackColor := $8000000f;
end
|
35
|
How do I specify the color for the grid lines

with Calendar1 do
begin
DrawGridLine := EXCALENDARLib_TLB.SmallDots;
GridLineColor := RGB(255,0,0);
end
|
34
|
How do I draw the grid lines

with Calendar1 do
begin
DrawGridLine := EXCALENDARLib_TLB.SmallDots;
end
|
33
|
How do I change the foreground color for the week days and week numbers header

with Calendar1 do
begin
HeaderForeColor := RGB(255,0,0);
ShowWeeks := True;
end
|
32
|
How do I change the background color for the week days and week numbers header

with Calendar1 do
begin
HeaderBackColor := RGB(255,0,0);
ShowWeeks := True;
end
|
31
|
How can I show or hide the 'Today' button

with Calendar1 do
begin
ShowTodayButton := False;
end
|
30
|
How can I show or hide the scroll bar that changes the year

with Calendar1 do
begin
ShowYearScroll := False;
end
|
29
|
How can I show or hide the header that displays the months

with Calendar1 do
begin
ShowMonth := False;
end
|
28
|
How can I show or hide the header that displays the week days

with Calendar1 do
begin
ShowDays := False;
end
|
27
|
How do I show or hide the weeks

with Calendar1 do
begin
ShowWeeks := True;
end
|
26
|
How can I change the visual appearance of Today date in the calendar

with Calendar1 do
begin
MarkToday := True;
Background[EXCALENDARLib_TLB.exMarkToday] := $ff;
end
|
25
|
How do I mark the Today date

with Calendar1 do
begin
MarkToday := True;
end
|
24
|
How can I show the control's selection even if the control loses the focus

with Calendar1 do
begin
HideSelection := False;
end
|
23
|
How can I hide the control's selection when the control loses the focus

with Calendar1 do
begin
HideSelection := True;
end
|
22
|
How do I enable single selection
with Calendar1 do
begin
SingleSel := True;
end
|
21
|
How do I enable multiple selection

with Calendar1 do
begin
SingleSel := False;
end
|
20
|
How do I disable or enable the control
with Calendar1 do
begin
Enabled := False;
end
|
19
|
Can I change the forecolor for the tooltip

with Calendar1 do
begin
ToolTipDelay := 1;
ToolTipWidth := 364;
Background[EXCALENDARLib_TLB.exToolTipForeColor] := $ff;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
18
|
Can I change the background color for the tooltip

with Calendar1 do
begin
ToolTipDelay := 1;
ToolTipWidth := 364;
Background[EXCALENDARLib_TLB.exToolTipBackColor] := $ff;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
17
|
Can I change the default border of the tooltip, using your EBN files

with Calendar1 do
begin
ToolTipDelay := 1;
ToolTipWidth := 364;
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Background[EXCALENDARLib_TLB.exToolTipAppearance] := $1000000;
Events.Add(Calendar1.Date).Comment := 'This is a text that shows up when the cursor hovers the date';
HideSelection := True;
end
|
16
|
How can I change the visual appearance of the selected month, in the months selector, using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Background[EXCALENDARLib_TLB.exMonthSelect] := $1000000;
Background[EXCALENDARLib_TLB.exMonthSelectForeColor] := $ff;
end
|
15
|
How can I change the visual appearance of Today date in the calendar, using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\pushed.ebn');
Background[EXCALENDARLib_TLB.exMarkToday] := $1000000;
Background[EXCALENDARLib_TLB.exDropDownSelForeColor] := $1;
SelForeColor := RGB(0,0,0);
MarkToday := True;
end
|
14
|
How can I change the visual appearance of separator between calendar and 'Today' button , using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Background[EXCALENDARLib_TLB.exDateSeparatorBar] := $1000000;
end
|
13
|
How can I change the visual appearance of the scrolling bar for years, using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn');
Background[EXCALENDARLib_TLB.exDateScrollRange] := $1000000;
Background[EXCALENDARLib_TLB.exDateScrollThumb] := $2000000;
end
|
12
|
How can I change the visual appearance of 'Today' button, using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn');
Background[EXCALENDARLib_TLB.exDateTodayUp] := $1000000;
Background[EXCALENDARLib_TLB.exDateTodayDown] := $2000000;
end
|
11
|
How can I change the visual appearance of header , using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Background[EXCALENDARLib_TLB.exDateHeader] := $1000000;
HeaderForeColor := RGB(255,0,0);
end
|
10
|
How can I change the visual appearance of header that week numbers, using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Background[EXCALENDARLib_TLB.exWeeksHeader] := $1000000;
HeaderForeColor := RGB(255,0,0);
ShowWeeks := True;
end
|
9
|
How can I change the visual appearance of header that displays days, using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Background[EXCALENDARLib_TLB.exDaysHeader] := $1000000;
end
|
8
|
How can I change the visual appearance of the drop down button, using EBN files
with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
VisualAppearance.Add(2,'c:\exontrol\images\pushed.ebn');
Background[EXCALENDARLib_TLB.exDropDownButtonUp] := $1000000;
Background[EXCALENDARLib_TLB.exDropDownButtonDown] := $2000000;
end
|
7
|
How do I change the visual appearance of the left and right buttons in the calendar's header, using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Background[EXCALENDARLib_TLB.exScrollLeft] := $1000000;
Background[EXCALENDARLib_TLB.exScrollRight] := $1000000;
end
|
6
|
How do I change the visual appearance of the up and down buttons in the calendar's header, using EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Background[EXCALENDARLib_TLB.exScrollUp] := $1000000;
Background[EXCALENDARLib_TLB.exScrollDown] := $1000000;
end
|
5
|
How do I change the control's foreground color

with Calendar1 do
begin
ForeColor := RGB(255,0,0);
end
|
4
|
How do I change the control's background color

with Calendar1 do
begin
BackColor := RGB(200,200,200);
end
|
3
|
How can I change the control's font

with Calendar1 do
begin
Font.Name := 'Verdana';
end
|
2
|
How do I change the control's border, using your EBN files

with Calendar1 do
begin
VisualAppearance.Add(1,'c:\exontrol\images\normal.ebn');
Appearance := EXCALENDARLib_TLB.AppearanceEnum($1000000);
end
|
1
|
How do I remove the control's border

with Calendar1 do
begin
Appearance := EXCALENDARLib_TLB.None2;
end
|